home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / DevPac v3.02b.adf / include / libraries / romboot_base.i < prev    next >
Text File  |  1991-11-20  |  939b  |  49 lines

  1.     IFND    LIBRARIES_ROMBOOT_BASE_I
  2. LIBRARIES_ROMBOOT_BASE_I    SET    1
  3. **
  4. **    $Filename: libraries/romboot_base.i $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. **
  12.  
  13.     IFND    EXEC_TYPES_I
  14.     include "exec/types.i"
  15.     ENDC
  16.     IFND    EXEC_NODES_I
  17.     include "exec/nodes.i"
  18.     ENDC
  19.     IFND    EXEC_LISTS_I
  20.     include "exec/lists.i"
  21.     ENDC
  22.     IFND    EXEC_LIBRARIES_I
  23.     include "exec/libraries.i"
  24.     ENDC
  25.     IFND    EXEC_EXECBASE_I
  26.     include "exec/execbase.i"
  27.     ENDC
  28.     IFND    EXEC_EXECNAME_I
  29.     include "exec/execname.i"
  30.     ENDC
  31.  
  32.  STRUCTURE  RomBootBase,LIB_SIZE
  33.     APTR    rbb_ExecBase
  34.     STRUCT    rbb_BootList,LH_SIZE
  35.     STRUCT    rbb_Reserved,16            ; for future expansion
  36.     LABEL   rbb_SIZEOF
  37.  
  38.  STRUCTURE BootNode,LN_SIZE
  39.     UWORD    bn_Flags
  40.     CPTR    bn_DeviceNode
  41.     LABEL    BootNode_SIZEOF
  42.  
  43. ROMBOOT_NAME:  MACRO
  44.     DC.B    'romboot.library',0
  45.     DS.W    0
  46.     ENDM
  47.  
  48.     ENDC    ; LIBRARIES_ROMBOOT_BASE_I
  49.